home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Misc / Crossword / Source / BroadeningSearch.h < prev    next >
Text File  |  1992-10-11  |  423b  |  29 lines

  1. /*
  2.  
  3. File BroadeningSearch.h
  4.  
  5. This type of search is depth first with iterative broadening.
  6.  
  7. */
  8.  
  9. #import "DepthFirstSearch.h"
  10.  
  11.  
  12. /* ————————————————————————————————————————————————————————————————————————————  */
  13.  
  14.  
  15. @interface BroadeningSearch:DepthFirstSearch
  16. {
  17.     int        * branches;
  18.     int        bound;
  19.     BOOL    missedSome;
  20. }
  21.  
  22. - free;
  23. - (BOOL) startSearch: (id) theVariables;
  24. - (BOOL) step;
  25. - (BOOL) backup;
  26. - erase: (id) variable;
  27.  
  28. @end
  29.